IEnumerable<string> => unique string[]
Posted
by Maxim
on Stack Overflow
See other posts from Stack Overflow
or by Maxim
Published on 2010-04-07T07:51:04Z
Indexed on
2010/04/07
7:53 UTC
Read the original article
Hit count: 198
Hello, i have collection of IEnumerable (sentence = string)
i want to split all sentences to words (ex: .Select(t => t.Split(' '));
and after i need group this query by words to get list of unique words.
Please, Help
© Stack Overflow or respective owner